home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Arsenal Files 3
/
The Arsenal Files 3.iso
/
gen_prog
/
appdemo.exe
/
APP.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-11-07
|
597b
|
26 lines
echo off
REM Be carefull editing this BAT file because it is modified by A++ as well
:Start
APP10D %1 %2 %3
if errorlevel 116 goto Exit
if errorlevel 114 goto EditProgram
if errorlevel 113 goto RunProgram
goto Exit
REM Then line after :RunProgram is modified by A++ to run
REM the program which you have selected.
:RunProgram
DEMOVIEW
pause
goto Start
REM Then line after :EditProgram is modified by A++ to edit
REM the last file compiled by default. You can change the Editor to another
REM one if you wish to
:EditProgram
C:\DOS\EDIT DEMOVIEW.APP
goto Start
:Exit